home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.3 Development Libraries / SGI IRIX 6.3 Development Libraries.iso / dist6.3 / ViewKit_dev.idb / usr / include / Vk / VkSoMsgApp.h.z / VkSoMsgApp.h
Encoding:
C/C++ Source or Header  |  1996-09-20  |  443 b   |  27 lines

  1. #ifndef _VK_SO_MSGAPP_H
  2. #define _VK_SO_MSGAPP_H
  3.  
  4. #include <Vk/VkMsgApp.h>
  5.  
  6. class VkSoMsgApp  : public VkMsgApp { 
  7.  
  8.   public:
  9.  
  10.     VkSoMsgApp ( char           *appClassName,
  11.             int              *arg_c, 
  12.             char            **arg_v,
  13.             XrmOptionDescRec *optionList       = NULL,
  14.             int               sizeOfOptionList = 0);
  15.             
  16.     ~VkSoMsgApp();
  17.  
  18.     void run();
  19.  
  20.   protected:
  21.  
  22.   private:
  23. };
  24.  
  25. #endif
  26.  
  27.